home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / sem.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  5KB  |  159 lines

  1. #ifndef _LINUX_SEM_H
  2. #define _LINUX_SEM_H
  3.  
  4. #include <linux/compiler.h>
  5. #include <linux/ipc.h>
  6. #include <asm/atomic.h>
  7.  
  8. /* semop flags */
  9. #define SEM_UNDO        0x1000  /* undo the operation on exit */
  10.  
  11. /* semctl Command Definitions. */
  12. #define GETPID  11       /* get sempid */
  13. #define GETVAL  12       /* get semval */
  14. #define GETALL  13       /* get all semval's */
  15. #define GETNCNT 14       /* get semncnt */
  16. #define GETZCNT 15       /* get semzcnt */
  17. #define SETVAL  16       /* set semval */
  18. #define SETALL  17       /* set all semval's */
  19.  
  20. /* ipcs ctl cmds */
  21. #define SEM_STAT 18
  22. #define SEM_INFO 19
  23.  
  24. /* Obsolete, used only for backwards compatibility and libc5 compiles */
  25. struct semid_ds {
  26.     struct ipc_perm    sem_perm;        /* permissions .. see ipc.h */
  27.     __kernel_time_t    sem_otime;        /* last semop time */
  28.     __kernel_time_t    sem_ctime;        /* last change time */
  29.     struct sem    *sem_base;        /* ptr to first semaphore in array */
  30.     struct sem_queue *sem_pending;        /* pending operations to be processed */
  31.     struct sem_queue **sem_pending_last;    /* last pending operation */
  32.     struct sem_undo    *undo;            /* undo requests on this array */
  33.     unsigned short    sem_nsems;        /* no. of semaphores in array */
  34. };
  35.  
  36. /* Include the definition of semid64_ds */
  37. #include <asm/sembuf.h>
  38.  
  39. /* semop system calls takes an array of these. */
  40. struct sembuf {
  41.     unsigned short  sem_num;    /* semaphore index in array */
  42.     short        sem_op;        /* semaphore operation */
  43.     short        sem_flg;    /* operation flags */
  44. };
  45.  
  46. /* arg for semctl system calls. */
  47. union semun {
  48.     int val;            /* value for SETVAL */
  49.     struct semid_ds __user *buf;    /* buffer for IPC_STAT & IPC_SET */
  50.     unsigned short __user *array;    /* array for GETALL & SETALL */
  51.     struct seminfo __user *__buf;    /* buffer for IPC_INFO */
  52.     void __user *__pad;
  53. };
  54.  
  55. struct  seminfo {
  56.     int semmap;
  57.     int semmni;
  58.     int semmns;
  59.     int semmnu;
  60.     int semmsl;
  61.     int semopm;
  62.     int semume;
  63.     int semusz;
  64.     int semvmx;
  65.     int semaem;
  66. };
  67.  
  68. #define SEMMNI  128             /* <= IPCMNI  max # of semaphore identifiers */
  69. #define SEMMSL  250             /* <= 8 000 max num of semaphores per id */
  70. #define SEMMNS  (SEMMNI*SEMMSL) /* <= INT_MAX max # of semaphores in system */
  71. #define SEMOPM  32            /* <= 1 000 max num of ops per semop call */
  72. #define SEMVMX  32767           /* <= 32767 semaphore maximum value */
  73. #define SEMAEM  SEMVMX          /* adjust on exit max value */
  74.  
  75. /* unused */
  76. #define SEMUME  SEMOPM          /* max num of undo entries per process */
  77. #define SEMMNU  SEMMNS          /* num of undo structures system wide */
  78. #define SEMMAP  SEMMNS          /* # of entries in semaphore map */
  79. #define SEMUSZ  20        /* sizeof struct sem_undo */
  80.  
  81. #ifdef __KERNEL__
  82.  
  83. /* One semaphore structure for each semaphore in the system. */
  84. struct sem {
  85.     int    semval;        /* current value */
  86.     int    sempid;        /* pid of last operation */
  87. };
  88.  
  89. /* One sem_array data structure for each set of semaphores in the system. */
  90. struct sem_array {
  91.     struct kern_ipc_perm    sem_perm;    /* permissions .. see ipc.h */
  92.     time_t            sem_otime;    /* last semop time */
  93.     time_t            sem_ctime;    /* last change time */
  94.     struct sem        *sem_base;    /* ptr to first semaphore in array */
  95.     struct sem_queue    *sem_pending;    /* pending operations to be processed */
  96.     struct sem_queue    **sem_pending_last; /* last pending operation */
  97.     struct sem_undo        *undo;        /* undo requests on this array */
  98.     unsigned long        sem_nsems;    /* no. of semaphores in array */
  99. };
  100.  
  101. /* One queue for each sleeping process in the system. */
  102. struct sem_queue {
  103.     struct sem_queue *    next;     /* next entry in the queue */
  104.     struct sem_queue **    prev;     /* previous entry in the queue, *(q->prev) == q */
  105.     struct task_struct*    sleeper; /* this process */
  106.     struct sem_undo *    undo;     /* undo structure */
  107.     int                pid;     /* process id of requesting process */
  108.     int                status;     /* completion status of operation */
  109.     struct sem_array *    sma;     /* semaphore array for operations */
  110.     int            id;     /* internal sem id */
  111.     struct sembuf *        sops;     /* array of pending operations */
  112.     int            nsops;     /* number of operations */
  113.     int            alter;   /* does the operation alter the array? */
  114. };
  115.  
  116. /* Each task has a list of undo requests. They are executed automatically
  117.  * when the process exits.
  118.  */
  119. struct sem_undo {
  120.     struct sem_undo *    proc_next;    /* next entry on this process */
  121.     struct sem_undo *    id_next;    /* next entry on this semaphore set */
  122.     int            semid;        /* semaphore set identifier */
  123.     short *            semadj;        /* array of adjustments, one per semaphore */
  124. };
  125.  
  126. /* sem_undo_list controls shared access to the list of sem_undo structures
  127.  * that may be shared among all a CLONE_SYSVSEM task group.
  128.  */ 
  129. struct sem_undo_list {
  130.     atomic_t    refcnt;
  131.     spinlock_t    lock;
  132.     struct sem_undo    *proc_list;
  133. };
  134.  
  135. struct sysv_sem {
  136.     struct sem_undo_list *undo_list;
  137. };
  138.  
  139. #ifdef CONFIG_SYSVIPC
  140.  
  141. extern int copy_semundo(unsigned long clone_flags, struct task_struct *tsk);
  142. extern void exit_sem(struct task_struct *tsk);
  143.  
  144. #else
  145. static inline int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
  146. {
  147.     return 0;
  148. }
  149.  
  150. static inline void exit_sem(struct task_struct *tsk)
  151. {
  152.     return;
  153. }
  154. #endif
  155.  
  156. #endif /* __KERNEL__ */
  157.  
  158. #endif /* _LINUX_SEM_H */
  159.